home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 26 (Anniversary Edition)
/
Volume 26 [Anniversary Edition] - JOGO DISK .iso
/
DEPOSITO
/
REmovido
/
Puzzle
/
MonsterMemory.swf
/
scripts
/
DefineButton2_71
/
BUTTONCONDACTION on(release).as
Wrap
Text File
|
2004-06-12
|
622b
|
25 lines
on(release){
tellTarget("../")
{
trycount = "0";
GameCount = 0;
CountX = 0;
CountY = 0;
while(Number(CountX) < 4)
{
while(Number(CountY) < 4)
{
CurrentCount = Number(Number(CountX * 4) + Number(CountY)) + 1;
removeMovieClip("Card" add CurrentCount);
trace(CountY add " " add CountX add " " add CurrentCount);
CountY = Number(CountY) + 1;
}
CountY = 0;
CountX = Number(CountX) + 1;
}
ClickCount = "0";
FirstClick = "";
}
gotoAndPlay(1);
}